Skip to main content
POST
/
action
/
meeting_prep_run_optimized_pipeline
[Full] Run Meeting Pipeline
curl --request POST \
  --url https://api-lr.agent.ai/v1/action/meeting_prep_run_optimized_pipeline \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "raw_event": "{{enriched_calendar_event}}",
  "user_email": "{{_google_email}}",
  "output_variable_name": "pipeline_result",
  "user_data": "{{user.context}}",
  "company_domains": "<string>",
  "meeting_history": "{{past_calendar_events}}",
  "contact_research": "{{contact_research_results}}",
  "meeting_sections": "<string>",
  "include_html": true,
  "settings": "{}"
}
'
{
  "status": 123,
  "response": {}
}

Authorizations

Authorization
string
header
required

Bearer token from your account (https://agent.ai/user/integrations#api)

Body

application/json
raw_event
string
default:{{enriched_calendar_event}}
required

The raw calendar event data from Google Calendar API.

user_email
string
default:{{_google_email}}
required

Current user's email address.

output_variable_name
string
default:pipeline_result
required

Variable name to store pipeline result with timing breakdown.

Pattern: ^[a-zA-Z][a-zA-Z0-9_]*$
user_data
string
default:{{user.context}}

Optional user profile data for personalization.

company_domains
string

Optional company domains. Auto-detected if not provided.

meeting_history
string
default:{{past_calendar_events}}

Optional past meetings for relationship analysis.

contact_research
string
default:{{contact_research_results}}

Optional pre-fetched contact research results.

meeting_sections
string

Optional pre-generated sections (skips Phase 6 LLM calls).

include_html
boolean
default:true

Generate HTML email output (Phase 7).

settings
string
default:{}

Optional settings for trigger validation.

Response

Successful response

status
integer<int32>

HTTP status code of the action response

response
object

Response data from the action